home *** CD-ROM | disk | FTP | other *** search
-
- // guichild.h
- //
- // Copyright (c) 1995 by Toshiaki Tsuji, all rights reserved.
-
- #ifndef __GUICHILD_H__
- #define __GUICHILD_H__
-
- #include "stdgfx.h"
- #include "guiframe.h"
-
- class GUICHILD : public GUIWINDOW
- {
- protected :
- virtual LONG OnCreate ();
- virtual LONG OnClose ();
-
- public :
- GUICHILD ();
- virtual ~GUICHILD ();
- }; // End of GUICHILD
-
- #endif
-
-